Method: pylint.checkers.base.comparison_checker.ComparisonChecker._check_nan_comparison.<locals>._is_nan
Calls: 1241, Exceptions: 0, Paths: 1Back
Path 1: 1241 calls (1.0)
Name (476) Const (452) Attribute (101) Call (87) List (28) Dict (20) BinOp (18) Subscript (18) Tuple (16) NamedExpr (8)
False (1227) True (14)
1def _is_nan(node: nodes.NodeNG) -> bool:
2 return _is_float_nan(node) or _is_numpy_nan(node)